home *** CD-ROM | disk | FTP | other *** search
- Stage.showMenu = false;
- stop();
- var shine = 1;
- var frozen = true;
- mouse._ox = mouse._x;
- mouse.onEnterFrame = function()
- {
- Mouse.hide();
- if(!frozen)
- {
- this._x = _xmouse;
- shine += Math.abs(this._x - this._ox);
- this._ox = this._x;
- }
- batShine._alpha = shine / 700;
- };
- count.timeLimit = 8000;
- count.secsLeft = 8;
- count.startTime = getTimer();
- count.onEnterFrame = function()
- {
- this.currentTime = getTimer() - this.startTime;
- this.remainingTime = this.timeLimit - this.currentTime;
- if(this.remainingTime < this.secsLeft * 1000)
- {
- this.gotoAndPlay("num" + this.secsLeft);
- this.secsLeft = this.secsLeft - 1;
- }
- };
-